home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
docs
/
gccfaq10
/
video.c
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-02-15
|
354 b
|
28 lines
#include <go32.h>
static int dos_seg, length;
static char *string;
main()
{
dos_seg = _go32_conventional_mem_selector();
string = "H.e.l.l.o.";
length = 10;
asm ("
pushw %es
movw _dos_seg, %es
movl _string, %esi
movl $0xb8000, %edi
movw _length, %cx
rep ; movsb
popw %es
");
}